home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / edsspell / spellmsg.inc < prev    next >
Encoding:
Text File  |  1996-09-15  |  1.9 KB  |  47 lines

  1. {
  2. type
  3.   TLanguages       = (lgEnglish, lgSpanish, lgBritish, lgItalian, lgDutch);
  4. }
  5.  
  6. const
  7.   SpellTitle      : array[TLanguages] of string[30] =
  8.     ({lgEnglish} 'Spell Checker',   {not usually used}
  9.      {lgSpanish} 'Verificaci≤n de Ortografφa.',
  10.      {lgBritish} 'Spell Checker',   {not usually used}
  11.      {lgItalian} 'Controllo Ortografico',
  12.      {lgDutch}   'Spellingcontrole');
  13.   FoundPhrase     : array[TLanguages] of string[15] =
  14.     ({lgEnglish} 'Word found:',
  15.      {lgSpanish} 'Se encontro:',
  16.      {lgBritish} 'Word found:',
  17.      {lgItalian} 'Parola trovata',
  18.      {lgDutch}   'Gevonden:');
  19.   NotFoundPhrase  : array[TLanguages] of string[15] =
  20.     ({lgEnglish} 'Not found:',
  21.      {lgSpanish} 'No se encontro:',
  22.      {lgBritish} 'Not found:',
  23.      {lgItalian} 'Non trovata',
  24.      {lgDutch}   'Niet gevonden:');
  25.   NoErrorsMesg    : array[TLanguages] of string =
  26.     ({lgEnglish} 'No errors found. Spell checking complete...',
  27.      {lgSpanish} 'Se termin≤ de verificar la ortografφa.' + #13 +
  28.                  'No se encontraron errores...',
  29.      {lgBritish} 'No errors found. Spell checking complete...',
  30.      {lgItalian} 'Controllo ortografico completato. Nessun errore...',
  31.      {lgDutch}   'Geen spelfouten. Spellingcontrole voltooid...');
  32.   AbortedMesg     : array[TLanguages] of string =
  33.     ({lgEnglish} 'Spell checking aborted.',
  34.      {lgSpanish} 'Se detuvo la verificaci≤n de ortografφa.',
  35.      {lgBritish} 'Spell checking aborted.',
  36.      {lgItalian} 'Controllo ortografico interrotto.',
  37.      {lgDutch}   'Spellingcontrole onderbroken...');
  38.   CompleteMesg    : array[TLanguages] of string =
  39.     ({lgEnglish} 'Spell checking complete.',
  40.      {lgSpanish} 'Se termin≤ de verificar la ortografφa.',
  41.      {lgBritish} 'Spell checking complete.',
  42.      {lgItalian} 'Controllo ortografico completato.',
  43.      {lgDutch}   'Spellingcontrole voltooid...');
  44.  
  45.  
  46.  
  47.